home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / StormAmigalib / stormamiga_lib / Include / sys / dir.h next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  488 b   |  26 lines

  1. #ifndef SYS_DIR_H
  2. #define SYS_DIR_H
  3.  
  4. /*
  5. **         $VER: sys/dir.h 1.1 (18.09.98)
  6. **             Includes Release 44.10
  7. **
  8. **     Copyright © 1996/98 by CyberdyneSystems
  9. **
  10. **            written by Matthias Henze
  11. **               All Rights Reserved
  12. */
  13.  
  14. #ifndef DIRENT_H
  15.   #include <dirent.h>
  16. #endif
  17.  
  18. /* backwards compatibility */
  19. #define direct dirent
  20.  
  21. #undef DIRSIZ
  22. #define DIRSIZ(dp) ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
  23.  
  24. #endif  /* SYS_DIR_H */
  25.  
  26.